home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / t_os / igo / src / igo.h < prev    next >
Text File  |  1993-07-08  |  780b  |  45 lines

  1. #define WALL 100
  2. #define WHITE 1
  3. #define BLACK 0
  4. #define BLANK 2
  5. #define DELETE -100
  6. #define FREE_CELL -101
  7.  
  8. #define WHITE_COL 15
  9. #define BLACK_COL 8
  10.  
  11. #define BANX 180
  12. #define BANY 30
  13. #define ISHI_R 11
  14.  
  15. #define NOEVENT 0
  16. #define LEFT_BOTTON 1
  17. #define RIGHT_BOTTON 2
  18. #define LEFT_RIGHT_BOTTON 3
  19. #define ABC_KEY 4
  20. #define ENTER_KEY 5
  21.  
  22. #define NORMAL 0
  23. #define SPECIAL 1
  24. #define TMP 2
  25.  
  26. #define NORMAL_CELL 0
  27. #define BOTTOM_CELL -1
  28. #define HEAD_CELL -2
  29. #define BOTTOM_PREV_CELL 1
  30. #define REPEAT_CANNOT_BOTTOM_CELL 2
  31. #define REPEAT_CANNOT_HEAD_CELL 3
  32.  
  33. #define NO_BROTHER 0
  34. #define NO_LAST_BROTHER 1
  35. #define LAST_BROTHER 2
  36.  
  37. #define MAX_TE_NUMBER 1000
  38.  
  39. #define HANDY_STONE -1
  40.  
  41. typedef struct {
  42.     int  menu_no;
  43.     char menu_name[11];
  44. } MENU_ITEM;
  45.